home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
FROMUTS
/
UNIXLIB37B
/
test
/
c
/
envtest
< prev
next >
Wrap
Text File
|
1992-02-10
|
224b
|
15 lines
#include <stdlib.h>
#include <stdio.h>
#include "unistd.h"
int main()
{
puts(getenv("UnixFS$/tmp"));
puts(getenv("UnixFS$/tmp"));
puts(getenv("TMP"));
putenv("TMP=Hello World");
puts(getenv("TMP"));
puts(getenv("TMP"));
}